home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / JAVA_ALL / KAFFE-0.2 / LIB / SUPPORT / FILES.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-30  |  496 b   |  24 lines

  1. /*
  2.  * files.h
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  11.  */
  12.  
  13. #ifndef __files_h
  14. #define __files_h
  15.  
  16. #include <fcntl.h>
  17. #include <sys/stat.h>
  18. #include <sys/param.h>
  19. #include <errno.h>
  20.  
  21. #define    SYS_ERROR    (char*)sys_errlist[errno]
  22.  
  23. #endif
  24.